home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / win / whttpd14.zip / CONF / ACCESS.CNF next >
Text File  |  1994-08-13  |  2KB  |  55 lines

  1. #----------------------------------------------------------------------
  2. #
  3. #  ACCESS.CNF
  4. #
  5. # Global access configuration for NCSA WinHttpd V1.3 (Windows)
  6. #
  7. # This is serser global access configuration file. It is best to
  8. # leave the directives in this file in the order they are in, or
  9. # things may not go the way you'd like.
  10. #
  11. # Do NOT simply read the instructions in here without understanding
  12. # what they do, if you are unsure consult the online docs. You have
  13. # been warned.
  14. #
  15. # Bob Denny <rdenny@netcom.com> 13-Aug-94
  16. #
  17. #----------------------------------------------------------------------
  18. #
  19. # The following access configuration establishes unrestricted access
  20. # to the server's document tree. There is no default access config, so
  21. # _something_ must be present and correct for the server to operate.
  22. #
  23. # This should be changed to whatever you set ServerRoot to.
  24. #
  25. <Directory c:/httpd>
  26. Options Indexes
  27. </Directory>
  28.  
  29. # This should be changed to whatever you set DocumentRoot to.
  30.  
  31. <Directory c:/httpd/htdocs>
  32.  
  33. # This may also be "None", "All", or "Indexes"
  34.  
  35. Options Indexes
  36.  
  37. # This controls which options the #HACCESS.CTL files in directories can
  38. # override. Can also be "None", or any combination of "Options", "FileInfo",
  39. # "AuthConfig", and "Limit"
  40.  
  41. AllowOverride All
  42.  
  43. # Controls who can get stuff from this server.
  44.  
  45. <Limit GET>
  46. order allow,deny
  47. allow from all
  48. </Limit>
  49.  
  50. </Directory>
  51.  
  52. # You may place any other directories you wish to have access
  53. # information for after this one.
  54.  
  55.